{% extends 'base_dashboard.html' %} {% load site_tags %} {% block title %}Admin Dashboard — Online LMS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Admin Panel

Welcome back, {{ request.user.get_display_name }}

Here's what's happening on your platform today.

{% now "l, F j, Y" %}
Admin Guide {% if pending_enrollments > 0 %} {{ pending_enrollments }} Pending Review {% endif %}
{{ total_students }}
Total Students
{{ total_teachers }}
Total Teachers
{{ published_courses }}/{{ total_courses }}
Published / Total Courses
{{ pending_enrollments }}
Pending Enrollments
Quick Actions
Recent Enrollments

Latest student enrollment activity

View All
{% for enrollment in recent_enrollments %} {% empty %} {% endfor %}
Student Course Status Date
{{ enrollment.student.get_display_name }}
@{{ enrollment.student.username }}
{{ enrollment.course.title|truncatechars:32 }}
{% format_price enrollment.course.price %}
{% if enrollment.status == 'approved' %} Approved {% elif enrollment.status == 'pending' %} Pending {% else %} Rejected {% endif %} {{ enrollment.requested_at|date:"M d, Y" }}

No enrollments yet.

Recent Users

Newest registrations

View All
{% for user in recent_users %}
{% if user.profile_picture %} {% else %}
{% endif %}
{{ user.get_display_name }}
{{ user.get_role_display }}
{{ user.date_joined|date:"M d" }}
{% empty %}

No users yet.

{% endfor %}
{% endblock %}